home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000259_news@columbia.edu _Tue Aug 27 00:15:49 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id AAA23098 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 27 Aug 1996 00:15:48 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id AAA29815 for kermit.misc@watsun; Tue, 27 Aug 1996 00:15:46 -0400 (EDT)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.sgi.com!enews.sgi.com!news.mathworks.com!uunet!in2.uu.net!newsxfer2.itd.umich.edu!netnews.worldnet.att.net!ix.netcom.com!news
  5. From: "Kevin Knickerbocker" <knickerb@ix.netcom.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: VMS C-Kermit closing port
  8. Date: Mon, 26 Aug 1996 22:49:05 -0400
  9. Organization: Netcom
  10. Lines: 43
  11. Message-ID: <01bb93c4.73acd400$52c8b7c7@#knickerb>
  12. References: <01bb90a1.db1a7820$79c8b7c7@#knickerb> <4vkebj$oh9@apakabar.cc.columbia.edu> <01bb91de.50653d80$aac8b7c7@#knickerb> <4vsgko$bi0@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: col-oh2-18.ix.netcom.com
  14. X-NETCOM-Date: Mon Aug 26  9:57:12 PM CDT 1996
  15. X-Newsreader: Microsoft Internet News 4.70.1085
  16.  
  17. > So the user calls up VMS, using some unspecified software.  VMS dials
  18. the
  19. > user back, using some other unspecified software.  The user's software
  20. > answers the call, and then the user can log in.  The user runs C-Kermit
  21. on
  22. > VMS and puts it in server mode and transfers some files.  When C-Kermit
  23. > exits, the connection is hung up.  So how did the user get C-Kermit to
  24. exit?
  25. > Did they send a BYE command?  If so, then that's what it does.  If not,
  26. > nothing should have happened -- when you run C-Kermit in remote mode,
  27. > transfer files, and then exit, it does not drop your connection.  If it
  28. is
  29. > your contention that it does, then I'll need to see a debug log
  30. > demonstrating what happened.
  31.  
  32. The user is calling VMS using Kermit95 1.1.7.  VMS is dialing the user
  33. back using RAXCO DIALBACK.  The user is exiting C-Kermit by sending the
  34. FINISH command, returning to terminal mode, and entering the EXIT command
  35. at the C-Kermit prompt.  The rest of your description is correct.
  36.  
  37. I ran through this process several times with the debug log turned on. 
  38. This is what I found.
  39.  
  40. Using dialback:
  41.  
  42.    ttclos LAT disconnect, status=1
  43.    ttclos LAT disconnect, iosb=1
  44.  
  45. Direct call:
  46.  
  47.   ttclos LAT disconnect, status=244
  48.   ttclos LAT disconnect, iosb=0
  49.  
  50. I am guessing that the error status on the direct call LAT disconnect is
  51. due to another channel being connected to the device.  That channel being
  52. the SYS$OUTPUT, SYS$INPUT, etc. of the users process.  I don't think you
  53. would want to disconnect the LTAxxx device from the terminal server port
  54. while it is still being used.
  55.  
  56. I will be glad to give you the complete debug logs but they are somewhat
  57. large.  What is the best way to get them to you?
  58.  
  59. Kevin